Skip to content

Update translations - #2715

Open
bc-svc-local wants to merge 1 commit into
masterfrom
LOCAL-1444-deliver-translations-2026-07-27-09-32-02
Open

Update translations#2715
bc-svc-local wants to merge 1 commit into
masterfrom
LOCAL-1444-deliver-translations-2026-07-27-09-32-02

Conversation

@bc-svc-local

@bc-svc-local bc-svc-local commented Jul 27, 2026

Copy link
Copy Markdown
Collaborator

This pull request was created automatically. Please check new translations, approve and deliver them.


Note

Low Risk
Translation-only changes for a UI label; low functional risk aside from verifying ICU strings parse correctly (especially Japanese).

Overview
Updates products.featured_promotions.more_offers across locale JSON files so the label uses ICU {count, plural, …} instead of a fixed string, matching the English pattern (one vs other) for featured promotion callouts on PLP/PDP.

Locales get language-specific singular/plural forms where applicable (e.g. German weiteres Angebot / weitere Angebote, Spanish oferta más / más ofertas, Dutch prefix Nog with count).

Review note: fr.json still uses English more offer / more offers, and ja.json plural syntax in the diff looks malformed (comma vs ). Several Spanish regional files use identical singular/plural text (más posibilidades).

Reviewed by Cursor Bugbot for commit c9e00ee. Bugbot is set up for automated code reviews on this repo. Configure here.

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 4 potential issues.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit c9e00ee. Configure here.

Comment thread lang/de.json
"card_default_image_alt": "Bild in Kürze verfügbar",
"featured_promotions": {
"more_offers": "weitere Angebote"
"more_offers": "{count, plural, ein {weiteres Angebot} other {weitere Angebote}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid ICU plural keywords

Medium Severity

Several more_offers strings use translated plural selectors such as ét, ein, una, une, and ett. ICU MessageFormat only accepts category keywords like one and other, so the singular branch is never selected and count 1 falls through to other. Other plurals in these same files already use one correctly.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c9e00ee. Configure here.

Comment thread lang/ja.json
"card_default_image_alt": "画像は近日公開予定",
"featured_promotions": {
"more_offers": "その他のオファー"
"more_offers": "{count, plural、オファーが他} other { 件}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Broken Japanese plural syntax

High Severity

The Japanese more_offers value is not valid ICU MessageFormat. It uses an ideographic comma after plural and garbles the category structure, so the formatter cannot parse the string. Storefronts in Japanese may show a raw format string or fail to render the featured promotions callout.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c9e00ee. Configure here.

Comment thread lang/es-419.json
"card_default_image_alt": "La imagen estará disponible próximamente",
"featured_promotions": {
"more_offers": "más ofertas"
"more_offers": "{count, plural, una {más posibilidades} other {más posibilidades}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong Spanish offers wording

Medium Severity

Latin American Spanish locales changed más ofertas to más posibilidades. That means “more possibilities,” not “more offers,” so the featured promotions callout now shows the wrong meaning to shoppers. Spain Spanish (es.json) still correctly refers to offers.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c9e00ee. Configure here.

Comment thread lang/fr.json
"card_default_image_alt": "Image disponible bientôt",
"featured_promotions": {
"more_offers": "plus d'offres"
"more_offers": "{count, plural, une {more offer} other {more offers}}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

French text became English

Medium Severity

The French more_offers string replaced the previous plus d'offres with English more offer / more offers. French storefronts will now show English copy in the featured promotions callout instead of localized text.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c9e00ee. Configure here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant